@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, Roboto, sans-serif;
}
body{
    background-color: #f2f2f2;
}
.slide{
    height: 100%;
    width: 180px;
    background-color: #fff;
    position: absolute;
    transition: 0.5s ease;
}
h1{
    font-weight: 800;
    color: #8000ff;
    text-align: right;
    padding: 10px 0;
    padding-right: 30px;
    pointer-events: none;
}
ul li{
    list-style-type: none;
}
ul li a{
    font-weight: 500;
    color: #011a41;
    display: block;
    padding: 5px 0;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease-out;
}
ul li a i{
    width: 40px;
    text-align: center;

}

input{
    display: none;
    visibility: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.toggle{
    position: absolute;
    top: 20px;
    left: 20px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    z-index: 1;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.toggle .common{
    position: absolute;
    width: 65%;
    height: 2px;
    background-color: #8000ff;
    border-radius: 50px;
    transition: 0.3s ease;
}
.toggle .top_line{
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.toggle .middle_line{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.toggle .bottom_line{
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}